home *** CD-ROM | disk | FTP | other *** search
/ Resource for Source: C/C++ / Resource for Source - C-C++.iso / codelib2 / v_02_12 / 2n12032a < prev    next >
Encoding:
Text File  |  1995-11-01  |  282 b   |  13 lines

  1.  
  2. #include <windows.h>
  3.  
  4. int PASCAL WinMain( HANDLE hInstance, HANDLE hPrevInstance,
  5.         LPSTR lpszCmdLine, int nCmdShow )
  6.         {
  7.         MessageBox( NULL, "This is a simple "
  8.         "one line Windows program",
  9.         "Simple Window Program",
  10.         MB_OK | MB_ICONEXCLAMTION );
  11.         return( 0 );
  12.         }
  13.